home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Technotools
/
Technotools (Chestnut CD-ROM)(1993).ISO
/
misc_pto
/
basic-c
/
test4.bas
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
BASIC Source File
|
1988-12-21
|
276 b
|
19 lines
rem ****************
rem * TEST PROGRAM *
rem ****************
cls
move 1 1
input "press enter to begin", y
move 10 35
z = 2
for x = 10 to 15
y = x*3
move x y
print "[";x;"]";
beep 2
sleep 2
next
move 23 1
input "press enter to end test program", y
end